home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue55 / Splat / main.dfm < prev    next >
Encoding:
Text File  |  2000-01-26  |  800 b   |  40 lines

  1. object MainForm: TMainForm
  2.   Left = 192
  3.   Top = 116
  4.   BorderIcons = []
  5.   BorderStyle = bsNone
  6.   Caption = 'MainForm'
  7.   ClientHeight = 480
  8.   ClientWidth = 640
  9.   Color = clBtnFace
  10.   ParentFont = True
  11.   OldCreateOrder = False
  12.   Position = poDefault
  13.   Scaled = False
  14.   Visible = True
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 120
  18.   TextHeight = 16
  19.   object Image: TImage
  20.     Left = 0
  21.     Top = 0
  22.     Width = 640
  23.     Height = 480
  24.     Align = alClient
  25.     OnMouseDown = ImageMouseDown
  26.   end
  27.   object AppEvents: TApplicationEvents
  28.     OnDeactivate = AppEventsDeactivate
  29.     OnMessage = AppEventsMessage
  30.     Left = 152
  31.     Top = 32
  32.   end
  33.   object Timer: TTimer
  34.     Interval = 250
  35.     OnTimer = TimerTimer
  36.     Left = 152
  37.     Top = 96
  38.   end
  39. end
  40.